home *** CD-ROM | disk | FTP | other *** search
/ QuickTime for the Web (2nd Edition) / QuickTime for the Web (2nd Edition).iso / pc / AppleScript / QUICKTIME 5.0.2 SCRIPTS / Example Files / Favorites Examples / Add Favorite From URL.txt < prev    next >
Encoding:
Text File  |  2001-06-04  |  135 b   |  9 lines

  1. tell application "QuickTime Player"
  2.     launch
  3.     activate
  4.     try
  5.         make favorite with data "rtsp://myserver/thisclip.mov"
  6.     end try
  7. end tell
  8.  
  9.